home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / vyzkuste / spyware / spyware.exe / Microsoft Baseline Security Analyzer / MBSASetup-EN.msi / Data.Cab / iprangeMRU.xsl < prev    next >
Extensible Markup Language  |  2004-08-13  |  478b  |  13 lines

  1. <?xml version="1.0"?> 
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.     <xsl:template match="MRU/IPRanges">
  4.         <xsl:for-each select="IPRange">
  5.             <xsl:sort select="@date" order="descending"/>
  6.             <xsl:if test="@add1 and @add1!=''">
  7.             <xsl:if test="@add2 and @add2!=''">
  8.                 <option><xsl:value-of select="@add1"/> to <xsl:value-of select="@add2"/></option>
  9.             </xsl:if>
  10.             </xsl:if>
  11.         </xsl:for-each>
  12.     </xsl:template>
  13. </xsl:stylesheet>